Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /* global VoxEngine, AppEvents */ |
||
9 | bind: function (run) { |
||
10 | var listener = Binder.startedListener.bind(null, run) |
||
11 | VoxEngine.addEventListener(AppEvents.Started, listener) |
||
12 | listener = Binder.callAlertingListener.bind(null, run) |
||
13 | VoxEngine.addEventListener(AppEvents.CallAlerting, listener) |
||
14 | }, |
||
15 | /** |
||
53 |